home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / inventor / noodle / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  601 b   |  31 lines

  1. #!smake
  2.  
  3. include /usr/include/make/commondefs
  4.  
  5. C++FILES = Interface.c++ WorldInfo.c++  \
  6.         GeneralizedCylinder.c++  \
  7.         NoodleTextureGizmo.c++ \
  8.         NoodleSurfaceGizmo.c++ \
  9.         NoodleSlider.c++ \
  10.         NurbMaker.c++ \
  11.         Triangulator.c++ profile.c++ \
  12.         LineManip.c++ LineManipHilight.c++ \
  13.         noodle.c++
  14.  
  15. #OPTIMIZER=-g
  16.  
  17. # Libraries to link with:
  18. LLDLIBS =  -lInventorXt -lm
  19.  
  20. LC++DEFS = -DDEBUG
  21.  
  22. default: noodle GeneralizedCylinder.so
  23.  
  24. include $(COMMONRULES)
  25.  
  26. noodle: $(OBJECTS)
  27.     $(C++F) -o $@ $(OBJECTS) $(LDFLAGS)
  28.  
  29. GeneralizedCylinder.so: ${OBJECTS}
  30.     ld -elf -shared ${OBJECTS} -o $@
  31.